home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / sprite / RCS / version.c,v < prev    next >
Encoding:
Text File  |  1991-10-25  |  752 b   |  60 lines

  1. head     5.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 5.1
  10. date     91.10.25.11.24.59;  author shirriff;  state Exp;
  11. branches ;
  12. next     5.0;
  13.  
  14. 5.0
  15. date     87.08.11.10.53.45;  author sprite;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 5.1
  25. log
  26. @Added main.h declaration
  27. @
  28. text
  29. @/* version.c --
  30.  *
  31.  *     Returns version from version.h
  32.  *
  33.  * Copyright (C) 1985 Regents of the University of California
  34.  * All rights reserved.
  35.  */
  36.  
  37. #ifndef lint
  38. static char sccsid[] = "%W% VESTA (Berkeley) %G%";
  39. #endif not lint
  40.  
  41. #include "version.h"    /* automatically generated */
  42. #include "main.h"
  43.  
  44. char versionString[] = VERSION ;
  45. char *
  46. SpriteVersion()
  47. {
  48.     return(versionString) ;
  49. }
  50. @
  51.  
  52.  
  53. 5.0
  54. log
  55. @First Sprite native copy
  56. @
  57. text
  58. @d14 1
  59. @
  60.